home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / archives / com / internet / stik / gls002b5.zoo / cookie.h < prev    next >
C/C++ Source or Header  |  1996-04-26  |  489b  |  27 lines

  1. /*
  2.  * This file has been modified as part of the FreeMiNT project. See
  3.  * the file Changes.MH for details and dates.
  4.  */
  5.  
  6. /* header file for dealing with the cookie jar */
  7.  
  8. #ifndef _COOKIE_H
  9. #define _COOKIE_H
  10.  
  11. struct cookie {
  12.     long tag;
  13.     long value;
  14. };
  15.  
  16. typedef struct cookie COOKIE;
  17.  
  18. #define CJAR       ((COOKIE **) 0x5a0)
  19.  
  20.  
  21. /* List of currently available tag values */
  22.  
  23. #define  COOKIE_MiNT         0x4d694e54L    /* 'MiNT' */
  24. #define  COOKIE_STiK         0x5354694bL    /* 'STiK' */
  25.  
  26. #endif /* _COOKIE_H */
  27.